* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --blue: #0E1B6E;
    --lightBlue: #A6B2F8;
    --gray: #C4C4C4;
    --lightGray: #F1F7FF;
    --white: #FFFFFF;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    width: 100%;
    min-width: 320px;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    /* background: #F1F7FF; */
    overflow-x: hidden;
    width: 100%;
}

a, button{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.site-page {
    padding: 28px 0 40px;
}

.error404 .breadcrumbs {
    display: none;
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

h2 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

button {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

 .btn-old {
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 20px;
    color: var(--white);
    background-image: linear-gradient(90deg, #4756B0 1.67%, #101D75 100%);
    box-shadow: 0px 0px 14px rgba(14, 27, 110, 0.15);
    border-radius: 31px;
} 

 .btn-footer {
     display: inline-block;
     font-size: 18px;
     text-decoration: none;
     padding: 12px 20px;
     color: var(--white);
     background: #4756B0;
     box-shadow: 0px 0px 14px rgba(14, 27, 110, 0.15);
     border-radius: 31px;
 }

.btn {
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    font-size: 18px;
    text-decoration: none;
    padding: 12px 20px;
    color: var(--white);
    background: #0E1B6E;
    box-shadow: 0px 5px 50px rgba(14, 27, 110, 0.3);
    border-radius: 31px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Header Styles */
.site-header {
    padding: 25px 0;
    width: 100%;
}

#masthead.site-header {
    padding-bottom: 24px;
}

.home-header {
    background: #212C6E;
}

.header-container {
    display: flex;
    justify-content: space-between;
    height: 50px;
}

.site-branding a,
.site-branding{
    display: inline-flex;
}

.site-branding{
    margin-right: 24px;
    min-height: 55px;
    min-width: 160px;
}

.custom-logo {
    max-width: 177px;
}

.header-menu {
    display: flex;
    height: 100%;
}

.main-navigation {
    margin-left: auto;
}

.header-menu .menu-item {
    display: flex !important;
    align-items: center;
    position: relative;
}

.header-menu .menu-item:not(:last-child) {
    margin-right: 15px;
}

.home .header-menu .menu-item a::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
    transition: all .3s linear;
    background-color: var(--blue);
}

.header-menu .menu-item a::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 2px;
    transition: all .3s linear;
    background-color: var(--blue);
}

.header-menu .current-menu-item a::after,
.header-menu .menu-item a:focus::after,
.header-menu .menu-item a:hover::after {
    width: 100%;
}

.header-menu .menu-item a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #152172;
    padding: 15px;
}

.home-header .header-menu .menu-item a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--blue);
    padding: 15px;
}

.header-mobile-menu .current-menu-item a,
.header-menu .current-menu-item a {
    font-weight: bold;
    font-size: 17px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.menu-link {
    display: none;
}

.menu-link {
    height: 50px;
    width: 50px;
    /*background-color: #152172;*/
    border-radius: 50%;
    background: #F1F7FF;
    box-shadow: 0px 2px 8px rgba(14, 27, 110, 0.15);
    position: fixed;
    right: 20px;
    top: 18px;
    z-index: 99;
}

.menu-link span,
.menu-link span:before,
.menu-link span:after {
    display: block;
    height: 2px;
    width: 16px;
    background-color: #152172;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -1px;
}

.menu-link span:before {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    content: '';
    margin-top: -6px;
}

.menu-link span:after {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    content: '';
    margin-top: 4px;
}

.menu-link_active span {
    background-color: transparent;
}

.menu-link_active span:before {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: 0;
}

.menu-link_active span:after {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    margin-top: 0;
}

.mobile-menu {
    background-color: #F1F7FF;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: -100vw;
    opacity: 0.99;
    top: 0;
    z-index: 9;
}

.home-header .mobile-menu {
    background-color: #212C6E;
    position: fixed;
    width: 100vw;
    height: 100vh;
    /*z-index: 1;*/
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    left: -100vw;
    opacity: 0.99;
    top: 0;
    z-index: 9;
}

.menu-active {
    left: 0;
}

.home-header .menu-active {
    left: 0;
}

.mobile-menu ul {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu ul a {
    display: block;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    line-height: 3;
    font-weight: 100;
    letter-spacing: 4px;
    color: #212C6E;
    text-decoration: none;
}

.home-header .mobile-menu ul a {
    display: block;
    width: 100%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    line-height: 3;
    font-weight: 100;
    letter-spacing: 4px;
    color: #fff;
    text-decoration: none;
}

/* Banner Styles */
#sapien-banner {
        padding: 100px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background-color: var(--lightGray); */
        background-image: url("../images/banner-background.png");
        background-position: bottom right;
        background-repeat: no-repeat;
        /* background-size: contain; */
        position: relative;
        min-height: 100vh;
        max-height: 1080px;
        background-size: 36%;
        background-position-y: 100%;
}

.banner-container {
    padding-top: 75px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
}

.banner-info {
    max-width: 45%;
    padding-right: 3%;
    padding-bottom: 2%;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    /*font-size: 45px;*/
    font-size: calc(25px + 15 * ((100vw - 320px) / 1244));
    line-height: 1.48;
    color: var(--blue);
}

.section-title-light {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    /*font-size: 45px;*/
    font-size: calc(25px + 15 * ((100vw - 320px) / 1244));
    line-height: 1.48;
    color: #4A58B2;
}

.banner-info_description {
    font-weight: 400;
    color: var(--blue);
    max-width: 450px;
    margin-bottom: 62px;
}

.banner-info_description p {
    margin-top: 0;
}

.info_description-big {
    font-size: 25px;
    line-height: 1.48;
    margin-bottom: 14px;
}

.info_description-normal {
    font-size: 16px;
    line-height: 1.2;
    margin-bottom: 0;
}

.banner-info_image-buttons {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
}

.get-app {
    display: inline-flex;
    align-items: center;
    padding: 14px 26px;
    transition: all 0.3s;
}

.get-app:hover {
    background: #1F31A0;
    box-shadow: 0px 5px 50px rgba(14, 27, 110, 0.5);
}

.get-app:not(:last-child) {
    margin-right: 10px;
}

.banner-info_image-buttons img {
    cursor: pointer;
}

/* Benefits */
.sections {
    padding-top: 28px;
    padding-bottom: 34px;
    border-bottom: 1px solid #fff;
}

.section-title {
    margin: 0;
}

.benefits {
    min-height: 470px;
    padding-bottom: 0px;
}

.benefits-slider {
    /* max-width: 991px; */
    padding: 0 15px 13px;
    margin-left: auto;
    margin-right: auto;
    min-height: 300px;
    display: block;
}

.benefits-slider__item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #4B59B3;
    padding-bottom: 8px;
    min-height: 200px;
}

.benefits__img {
    display: flex;
    justify-content: center;
}

.benefits__img img {
    display: block;
    max-width: 100%;
    height: auto;
}

.benefits-list {
    width: 100%;
    max-width: 960px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.benefits-list__item {
    display: flex;
    align-items: center;
    background: #FCFDFF;
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.15);
    border-radius: 30px;
    padding: 15px 16px;
    font-size: 16px;
    flex-basis: 290px;
}

.img-list {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin-right: 5px;
}

.img-list img {
    position: relative;
}

.center {
    text-align: center;
}

.btn-start {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 220px;
    height: 50px;
    background: #0E1B6E;
    box-shadow: 0px 5px 50px rgba(14, 27, 110, 0.3);
    border-radius: 31px;
    transition: all .2s linear;
}
.btn-start:focus,
.btn-start:hover {
    background: #1F31A0;
    box-shadow: 0px 5px 50px rgba(14, 27, 110, 0.5);
}

.link-assets {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    min-width: 220px;
    height: 50px;
    background: #0E1B6E;
    box-shadow: 0px 5px 50px rgba(14, 27, 110, 0.3);
    border-radius: 31px;
    transition: all .2s linear;
}

.link-assets:focus,
.link-assets:hover {
    background: #1F31A0;
    box-shadow: 0px 5px 50px rgba(14, 27, 110, 0.5);
}

.btn-prev {
    right: 51%;
}

.btn-next {
    left: 51%;
}

/* .slider-btn {
    position: absolute;
    width: 41px;
    height: 41px;
    top: 73%;
    background-color: #4B59B3;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.15);
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    z-index: 1;
} */

.slider-btn {
    position: absolute;
    width: 41px;
    height: 41px;
    top: 68%;
    background: #F1F7FF;
    border: 0;
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.15);
    border-radius: 50%;
    padding: 0;
    transition: all .2s linear;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.slider-btn:hover {
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.05);
}

.slider-btn svg * {
    transition: all .2s linear;
}

.slider-btn:hover svg * {
    fill: #A6B2F8;
}

.slider-btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0;
}

/* POPUP */
.mfp-bg{
    background: rgba(1, 4, 19, 0.78);
    opacity: 1;
}

.popup-box{
    position: relative;
    width: 100%;
    max-width: 764px;
    margin: 0 auto;
    padding: 33px 20px 66px;
    background: #F1F7FF;
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.15);
    border-radius: 17px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #0E1B6E;
}

.popup-title {
    font-weight: 500;
    font-size: calc(30px + 15 * ((100vw - 320px) / 1244));
    line-height: 1.488;
    color: #0E1B6E;
    text-align: center;
    margin-top: 0;
    margin-bottom: 22px;
}

.popup-text-box{
    margin-bottom: 44px;
}

.popup-text {
    font-weight: normal;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.popup-box .banner-info_image-buttons{
    justify-content: center;
    align-items: center;
}
.popup-box .get-app:not(:last-child){
    margin-right: 50px;
}

/* Partners Section Styles */
.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 0;
}

.partners {
    display: block;
}

.company-logos {
    display: table;
    margin: 0px auto;
    width: 100%;
}

.company-logo {
    float: left;
    width: 25%;
    height: 100px;
    position: relative;
    margin-bottom: 30px;
    margin-top: 10px;
}

.company-logo > img {
    width: 100%;
    height: auto;
    position: absolute;
}

/* Team Page Styles */
.team-page {
    display: block;
}

.sapien_developers {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 19px;
    color: #0E1B6E;
}

.department {
    padding: 20px 0 0;
    max-width: 991px;
    margin: 0 auto;
}

.members_title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #4A58B2;
    padding: 0 85px;
}

.members {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.member {
    flex-basis: 32%;
    margin-bottom: 10px;
    padding: 15px 0 0;
}


.member-photo {
    display: inline-block;
    position: relative;
}

.member-photo img {
    max-width: 100%;
    width: 196px;
    height: auto;
    border: 5px solid #0E1B6E;
    border-radius: 50%;
}

.member-name {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    color: #0E1B6E;
    margin: 21px 0 6px;
}

.member-position {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    color: #0E1B6E;
    margin: 0 auto;
    height: 40px;
    max-width: 75%;
}

.member-linkedin {
    color: #fff;
    width: 35px;
    background: #005483;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 39%;
    bottom: -6%;
}

.member-linkedin i {
    font-size: 21px;
}

/* Assets Page Styles */
.coins-list{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 100px;
    padding-bottom: 58px;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #0E1B6E;
    margin-right: -15px;
}
.coins-list a{
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #0E1B6E;
}

.coins-list__item{
    display: flex;
    align-items: center;
    flex-basis: 33.33%;
    padding-bottom: 42px;
    padding-right: 30px;
}

.coin-name a,
.coin-name{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
    text-decoration: none;
}

.coin-info p{
    margin: 0;
}
.coin-short__info a,
.coin-desc{
    font-weight: normal;
    font-size: 13px;
    line-height: 1.46;
    text-decoration-line: underline;
}

.coin-img{
    width: 90px;
    min-width: 70px;
    height: 90px;
    overflow: hidden;
    border-radius: 20px;
    margin-right: 20px;
/*     box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.15); */
}
.coin-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Blog Page Styles */
.new-posts {
    padding: 60px 0;
    display: block;
    background: #E9F0FA;
    box-shadow: 5px 4px 4px rgba(0, 0, 0, 0.25);
}

.latest-posts_title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    color: #152172;
    border-bottom: 1px solid rgba(21, 33, 113, 0.58);
    margin: 0;
    padding: 15px 0;
}

.latest-post {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: 1px solid rgba(21, 33, 113, 0.19);
    margin: 0;
    padding: 40px 20px;
    transition: all .6s;
}

.latest-post:hover {
    background: #F1F7FF;
}

.latest-post_column {
    flex-basis: 24%;
}

.latest-post_meta__date {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #152172;
    opacity: 0.6;
}

.latest-post_meta__category a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #152172;
    opacity: 0.5;
}

.latest-post_title h3 {
    margin: 0;
}

.latest-post_title a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #152172;
    text-decoration: none;
}

.latest-post_excerpt {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    color: #01093E;
}

.latest-post_author {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    color: #152172;
    opacity: 0.6;
}

/* Popular Posts Style */
#popular-posts {
    display: block;
    padding: 60px 0;
    background: #F1F7FF;
}

.popular-posts-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    color: #152172;
    text-align: center;
}

.popular-posts-subtitle {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #152172;
    text-align: center;
}

.popular-posts {
    padding: 14px 0;
}

.popular-post {
    margin: 0 10px;
    padding: 35px 20px;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    -moz-transition: all .6s;
    transition: all .6s;
    background: rgba(0, 0, 0, 0.02);
    -webkit-border-radius: 5%;
    -moz-border-radius: 5%;
    border-radius: 5%;
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0);
}

.popular-post:hover {
    background: rgba(0, 0, 0, 0.04);
}

.popular-post_img {
    text-align: center;
    margin-bottom: 10px;
}

.popular-post_img a img {
    margin: 0 auto;
}

.popular-post_info {
    display: flex;
    margin-bottom: 5px;
}

.time-reading {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #152172;
    opacity: 0.7;
    text-decoration: none;
    margin-left: 5px;
}

.popular-post_meta__category a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #152172;
    opacity: 0.7;
    text-decoration: none;
}

.popular-post_title {
    margin-bottom: 10px;
}

.popular-post_title h3 {
    margin: 0;
}

.popular-post_title a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 19px;
    color: #152172;
    text-decoration: none;
}

.popular-post_excerpt {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 17px;
    color: #01093E;
    margin-bottom: 15px;
}

.popular-post_meta {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #152172;
    opacity: 0.6;
}

.slider-arrow-prew, .slider-arrow-next {
    background: none;
    border: none;
    position: absolute;
    font-size: 16px;
    background: #e6ecf5;
    border-radius: 49px;
    padding: 8px 12px;
    color: #152172b8;
    cursor: pointer;
    transition: all .6s;
}

.slider-arrow-prew:hover, .slider-arrow-next:hover {
    color: #152172;
}

.slider-arrow-next {
    right: -30px;
    top: 50%;
}

.slider-arrow-prew {
    left: -30px;
    bottom: 46%;
}

.popular-posts_logos {
    padding: 25px 0;
}

/* Main Post Styles */
#main-post {
    padding: 60px 0;
}

.main-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-post_info {
    display: flex;
    margin-bottom: 20px;
}

.main-post .time-reading {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #152172;
    opacity: 0.7;
    text-decoration: none;
    margin-left: 5px;
}

.main-post_meta__category a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #152172;
    opacity: 0.7;
    text-decoration: none;
}

.main-post_title {
    margin-bottom: 15px;
    max-width: 700px;
}

.main-post_title h3 {
    margin: 0;
}

.main-post_title h3 a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 31px;
    color: #152172;
    text-decoration: none;
}

.main-post_excerpt {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #01093E;
    margin-bottom: 15px;
    max-width: 550px;
}

.main-post_meta {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #152172;
    opacity: 0.6;
    margin-bottom: 40px;
}

.main-post_link {
    border-radius: 10px;
    display: inline-block;
}

.main-post_link a {
    background: #152172;
    padding: 16px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

/* Single Post Styles */
#single-post {
    display: block;
    padding: 60px 0;
}

.main-post_title h3 {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 31px;
    color: #152172;
}

.single-post .time-reading {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #152172;
    opacity: 0.7;
    text-decoration: none;
}

.main-post-content {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.main-post_text_content {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #01093E;
    flex-basis: 80%;
}

.single-time-reading {
    margin-left: 0 !important;
}

.single-main-post_meta {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #152172;
    opacity: 0.6;
    margin-top: 20px;
    flex-basis: 20%;
}

.single-main-post_meta__category a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #152172;
    text-decoration: none;
}

.single-main-post_meta__author {
    margin: 3px 0;
}

/* Comments Sytles */
.comments-area {
    padding: 60px 0 30px;
}

.comments-title {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    color: #152172;
}

.comment-reply-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    color: #152172;
}

.comment-list {
    margin: 40px 0;
}

.logged-in-as a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #152172;
    text-decoration: none;
}

.comment-form-comment label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    color: #152172;
    margin-bottom: 10px;
}

.comment-author img {
    display: none;
}

.comment-metadata {
    margin-top: 5px;
}

.comment-edit-link {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600 !important;
    font-size: 16px;
    color: #152172;
    text-decoration: none;
}

.comment-content {
    background: #fff;
    padding: 1px 20px;
    margin: 15px 0;
    border-radius: 8px;
    display: inline-block;
}

.comment-content p {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    color: #01093E;
    line-height: 1.3;
}

.reply {
    margin: 15px 0;
}

.comment-reply-link {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400 !important;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: #283587;
    padding: 10px 10px;
    border-radius: 8px;
    display: inline-block;
}

.comment-metadata a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #152172;
    text-decoration: none;
}

.comment-author a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    color: #152172;
    text-decoration: none;
}

.comment-respond small {
    display: block;
    margin: 25px 0;
}

#cancel-comment-reply-link {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    background: #283587;
    margin-left: 15px;
    padding: 10px;
    border-radius: 8px;
}

/* Crypto Places Styles */
.bg-wrapper {
    display: block;
    background-image: url("../images/bg-main-page.png");
    /* background-color: var(--lightGray); */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    background-position-y: 600px;
    width: 100%;
    position: relative;
    display: block;
}

.sapien-title {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    color: #152172;
    margin-bottom: 0;
    text-align: center;
}

.subtitle_section {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #0E1B6E;
    margin-top: 0;
    margin-bottom: 0;
}

.number-coins {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    text-align: center;
    font-weight: 500;
    font-size: 118px;
    line-height: 1.5;
    color: #0E1B6E;
    padding-top: 36px;
    margin-top: 0;
    margin-bottom: 25px;
}

.sapien-coins_items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0 82px;
    max-width: 800px;
    margin: 0 auto;
}
.sapien-coins_items .slick-track{
    display: flex;
    align-items: center;
}

/* Crypto Post Styles */
#crypto-post {
    padding: 60px 0 310px;
    background-image: url("../images/bg-bitcoin.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    background-position-y: 600px;
}

.crypto-post {
    background-image: url("../images/bg-header-bitcoin.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.crypto-title {
    font-family: 'Poppins',sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 45px;
    color: #0E1B6E;
    margin-bottom: 13px;
}

.crypto-post-content h2 {
    font-family: 'Poppins',sans-serif !important;
    font-style: normal !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 30px !important;
    color: #0E1B6E !important;
    margin-bottom: 23px;
}

.crypto-post-content {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #4A5781;
}

.crypto-post-content p {
    margin-top: 0;
}

.crypto-post_info {
    display: flex;
    margin-bottom: 20px;
}

.crypto-post_meta__category a {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: #152172;
    opacity: 0.7;
    text-decoration: none;
}

.crypto-post_title {
    margin-bottom: 15px;
    max-width: 700px;
}

.crypto-post_title h3 {
    margin: 0;
}

.crypto-post_title h3 a {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 31px;
    color: #152172;
    text-decoration: none;
}

.crypto-post_excerpt {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #01093E;
    margin-bottom: 15px;
    max-width: 550px;
}

.crypto-post_link {
    border-radius: 10px;
    display: inline-block;
}

.crypto-post_link a {
    background: #152172;
    padding: 16px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
}

.slick-current .sapien-coins_img {
    width: 100px;
    height: 100px;
}

.sapien-coins_link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    transition: all .2s linear;
}

.sapien-coins_link:hover {
    transform: scale(1.1);
}

.sapien-coins_img {
    position: relative;
    display: inline-block;
    /* box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.05);
    border-radius: 15px; */
    overflow: hidden;
}

.sapien-coins_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sapien-coins_text {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 0;
    line-height: 31px;
    text-align: center;
    color: #0E1B6E;
    width: max-content;
    position: absolute;
    min-width: 100%;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    transition: all .3s;
    padding: 0;
    font-size: 16px !important;
}

.sapien-coins_link:hover .sapien-coins_text {
    transform: translateX(-50%) scale(1);
    font-size: 21px;
    bottom: 100%;
    padding-bottom: 10px;
}

.sapien-coins_item {
    display: flex;
}

.link-container {
    text-align: center;
}

/* ___Reviews styles___ */
.reviews {
    display: block;
    background-color: var(--lightGray);
}

.reviews-slider {
    padding: 46px 15px 8px;
    margin-bottom: 0 !important;
}

.reviews-slider .slick-list.draggable {
    padding-bottom: 25px;
}

.reviews-slider_wrapper {
    margin: 0 -30px;
}

.reviews-slider__item {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #0E1B6E;
    padding: 18px;
}

.reviews-slider__item .inner-container {
    padding: 12px;
    background: #FCFDFF;
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.05);
    border-radius: 30px;
    min-height: 270px;
    top: 10px;
    position: relative;
    transition: all 0.2s linear;
}

.reviews-slider__item .inner-container:hover {
    box-shadow: 0px 12px 30px rgba(14, 27, 110, 0.2);
    top: 0px;
}

.reviews-user-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
}

.reviews-btn {
    outline: none;
}

.user-photo {
    width: 32px;
    height: 32px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 11px;
}

.user-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 0;
}

.rating-box {
    display: flex;
    align-items: center;
    font-weight: normal;
    font-size: 18px;
    line-height: 1.5;
    padding-bottom: 10px;
}

.rating-box .live-rating {
    min-width: 32px;
    text-align: center;
    margin-right: 11px;
}

.rating-box .jq-star:not(:first-child) {
    margin-left: 10px;
}

.rating-box .jq-star-svg {
    padding-left: 0;
}

.my-rating {
    display: flex;
    align-items: center;
}

.reviews-text {
    padding: 6px;
    /* background: #E6F0FF; */
    border-radius: 3px;
    font-size: 13px;
    line-height: 1.46;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
}

.reviews-dots li {
    display: inline-flex;
    padding: 8px;
    cursor: pointer;
}

.reviews-dots button {
    transition: all .2s linear;
    background: #A6B2F8;
    border: none;
    font-size: 0;
    padding: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    cursor: pointer;
}

.reviews-dots li:hover button,
.reviews-dots .slick-active button {
    background: #18257D;
}

.reviews-slider-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.reviews-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    background: #F1F7FF;
    border: 0;
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.15);
    border-radius: 50%;
    padding: 0;
    transition: all .2s linear;
    cursor: pointer;
}

.reviews-btn:hover {
    box-shadow: 0px 4px 20px rgba(14, 27, 110, 0.05);
}

.reviews-btn svg * {
    transition: all .2s linear;
}

.reviews-btn:hover svg * {
    fill: #A6B2F8;
}

.rewievs-prev {
    margin-right: 18px;
}
/* ___Reviews styles END___ */

/*Contact Us*/
.map{
    position: relative;
    background-color: var(--lightGray);
    background-image: url(../images/map.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 471px;
    max-width: 1164px;
    margin-top: 54px;
    margin-bottom: 66px;
}

.map iframe{
    width: 100%;
}

.contact-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    color: #0E1B6E;
}

.contact-box__item{
    flex-basis: 25%;
}

.contact-box_title{
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 2px;
}

.contact-box__item a{
    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 1.46;
    color: #0E1B6E;
    text-decoration: none;
}

.contact-box__item a:hover{
    text-decoration: underline;
}

/* Footer Styles */
.site-footer *:not(i) {
    font-family: 'Poppins', sans-serif;
    font-style: normal;
}

.site-footer {
    position: relative;
    padding: 52px 0 0;
    background: #0E1B6E;
}

.footer-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.first-row {
    border-bottom: 1px solid #131F69;
}

.first-row .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.first-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-basis: 33.333%;
}

.second-column {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-basis: 66.666%;
}

.second-row {
    padding: 14px 0;
}

.second-row p {
    text-align: center;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #A6B2F8;
}

.footer-nav-menu {
    flex-basis: 33.333%;
    margin-bottom: 35px;
}

.footer-nav-menu ul li a {
    font-weight: 400;
    font-size: 16px;
    color: #A6B2F8;
    opacity: 0.5;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-nav-menu ul li a:hover {
    opacity: 1;
}

.footer-nav-menu_title {
    margin-bottom: 10px;
    margin-top: 3px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1.5;
    color: #EBEBEB;
}

.footer-logo-icon img {
    max-width: 190px;
    margin-bottom: 25px;
}

.footer-text-social-wrapper img {
    width: 130px;
}


.footer-social {
    display: flex;
    margin-top: 6px;
}

.footer-social i {
    color: #A6B2F8;
    transition: all 0.3s;
    margin-right: 20px;
    font-size: 28px;
}

.footer-social a:hover i {
    color: #fff;
}

.footer_image-buttons {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer_image-buttons a {
    max-width: 150px;
}

.footer-nav-menu ul {
    line-height: 1.7;
}